net/http.http2stream.state (field)

16 uses

	net/http (current package)
		h2_bundle.go#L4736: 	state            http2streamState
		h2_bundle.go#L4762: 		return st.state, st
		h2_bundle.go#L5359: 		switch st.state {
		h2_bundle.go#L5427: 		switch st.state {
		h2_bundle.go#L5439: 			st.state = http2stateHalfClosedLocal
		h2_bundle.go#L5768: 	if st.state == http2stateIdle || st.state == http2stateClosed {
		h2_bundle.go#L5769: 		panic(fmt.Sprintf("invariant; can't close stream in state %v", st.state))
		h2_bundle.go#L5771: 	st.state = http2stateClosed
		h2_bundle.go#L6033: 	st.state = http2stateHalfClosedRemote
		h2_bundle.go#L6092: 		if st.state == http2stateHalfClosedRemote {
		h2_bundle.go#L6261: 		state:     state,
		h2_bundle.go#L6607: 	if st.state != http2stateHalfClosedRemote && st.state != http2stateClosed {
		h2_bundle.go#L7282: 	if msg.parent.state != http2stateOpen && msg.parent.state != http2stateHalfClosedRemote {